home *** CD-ROM | disk | FTP | other *** search
/ Generous Efforts of Many / gemcd.zip / GEM.CD.A.po / FEATURES:BEAGLE / FLEX.TYPE.SHK / FLEX.TYPE / SPECIAL CHARACTERS.bas < prev    next >
BASIC Source File  |  2000-01-01  |  776b  |  14 lines

  1. 5  & 
  2. 10  REM SPECIAL CHARACTER DEMO PROGRAM
  3. 15  REM SET UP CTRL T & Z
  4. 20 T$ =  CHR$(20):Z$ =  CHR$(26)
  5. 25  PRINT T$"1": HOME : VTAB 3
  6. 30  PRINT "Of the ten special characters in the Ascii character set only two are normally available from the keyboard -- ] (shift M) and ^ (shift N).": PRINT 
  7. 35  PRINT "FLEX TYPE puts all ten at your fingertips and makes them available": PRINT "from the keyboard through the use of control Z.": PRINT 
  8. 40  FOR J = 75 TO 79: REM K THRU O
  9. 45  HTAB 25: PRINT "CTRL-Z  " CHR$(J)"  =  "Z$ CHR$(J)
  10. 50  NEXT : PRINT 
  11. 55  FOR J = 107 TO 111: REM  "k THRU o"
  12. 60  HTAB 25: PRINT "CTRL-Z  " CHR$(J)"  =  "Z$ CHR$(J)
  13. 65  NEXT : PRINT 
  14. 70  PRINT "Notice that five are accessed in upper case mode and the other five": PRINT "are available in lower case."